home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdio / fputc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-10  |  145 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. int fputc(int x,FILE *p)
  4. {
  5.     if(--p->count>=0) return((unsigned char)(*p->pointer++=x));
  6.      else return(_putbuf(x,p));
  7. }
  8.